'1.0.0.0

0.   ControlSla  C:\Windows\system32 ,    DLL : "C:/WINDOWS/system32/ControlSla/ControlSla.dll"
1.  FrameWork 2.0 ( dotnetfx2.exe)
2.       ( 1ControlSladll.reg  2ControlSladll.reg)
3.    1 ( regdll.bat)
4.  ,      
	"ControlSla.UserControl1"
5.        , :
	      "ControlSla.dll", 
		HKEY_CLASSES_ROOT\CLSID\{31068AB3-D134-35ED-A65B-0FA48F5EB50B}\InprocServer32\1.0.0.0
	   "regdll.bat"
	       
		HKEY_CLASSES_ROOT\CLSID\{31068AB3-D134-35ED-A65B-0FA48F5EB50B}\InprocServer32\1.0.0.6
	   ()      


'  :
Public Class UserControl1

    Public Text_KeyBoard As String = ""
    Public Event OnPressAnyKey()
    Public Event axWBrowser_OnPressAnyKey()

    Public Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Text_KeyBoard = Text_KeyBoard & Button1.Text
        RaiseEvent OnPressAnyKey()
        RaiseEvent axWBrowser_OnPressAnyKey()
        'MsgBox(Text_KeyBoard)
    End Sub

    Public Sub MSGt()
        MsgBox(Text_KeyBoard)
    End Sub

    Private Sub UserControl1_OnPressAnyKey() Handles Me.OnPressAnyKey
        MSGt()
    End Sub
End Class
